home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 July: Mac OS SDK / Dev.CD Jul 00 SDK2.toast / Development Kits / Hardware / Mac OS USB DDK / Mac OS USB DDK 1.4.1 / Examples / USBModem / ShimSerialStub.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-04-25  |  792 b   |  38 lines  |  [TEXT/CWIE]

  1. /*
  2.     File:        ShimSerialStub.h
  3.  
  4.     Contains:    Definitions for the serial shim interface
  5.  
  6.     Version:    xxx put version here xxx
  7.  
  8.     Written by:    
  9.  
  10.     Copyright:    © 1996, 1998 by Apple Computer, Inc., all rights reserved.
  11.  
  12.     File Ownership:
  13.  
  14.         DRI:                xxx put dri here xxx
  15.  
  16.         Other Contact:        xxx put other contact here xxx
  17.  
  18.         Technology:            USB
  19.  
  20. */
  21.  
  22. #ifndef    _SHIMSERIALSTUB_
  23. #define    _SHIMSERIALSTUB_
  24.  
  25. /********************************************************************************************/
  26. //
  27. //    Prototypes
  28. //
  29. /********************************************************************************************/
  30.  
  31. OSErr     InstallShimDrvr(CFragConnectionID ConnID);
  32. OSErr     RemoveShimDrvr(Boolean forceFlag);
  33. OSErr     LoadShim(void);
  34. OSErr     UnLoadShim(void);
  35. void     ShimIOComplete(ParmBlkPtr pb, OSErr result);
  36.  
  37. #endif
  38.